.navbar, #footer{
    background-color: #021D2B!important;
}

.login, .home, .register, .verify{
    background-color: #38749C!important;
}

.text-light, #volver{
    color: #A3BEC9!important;
}

.navbar-toggler {
    border-color: #A3BEC9!important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='lightgrey' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#volver{
    text-decoration:none;
    color:white;
}

.main{
    min-height: 70vh;
}

.ion-logo-facebook, .ion-logo-instagram{
    font-size: 40px;
    color: #A3BEC9;
}

.ion-md-time, .ion-logo-whatsapp, .ion-md-mail, .ion-md-call{
    color: #A3BEC9;
}

.vh-100{
    height: 75vh!important;
}

/* boton */
.ir-arriba {
    display: none;
    border-radius: 25%;
    width: 40px;
    height: 40px;
    background: #A3BEC9;
    font-size: 20px;
    color: #021D2B;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    text-align: center;
    line-height: 40px; /* Centrar verticalmente */
  }

  .ir-arriba::before {
    content: "▲"; /* Flecha arriba */
    font-size: 20px;
  }

  /* preload */
  #contenedor_carga{
    background-color: rgba(250, 240, 245, 0.9);
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 10000;
  }
  
  @keyframes girar-horizontal {
    0% {
      transform: scaleX(1);
    }
    50% {
      transform: scaleX(-1);
    }
    100% {
      transform: scaleX(1);
    }
  }
  
  #carga {
      background-image: url('/img/isologo.gif');
      height: 100px;
      width: 100px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      background-size: cover;
      animation: girar-horizontal 1s linear infinite;
  }

/*PRELOADING------------ */
#preloader{
    position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: #000;
     z-index: 1000;
 }
 
 #loader{
     position: fixed;
     top: 25%;
     left: 25%;
     right: 25%;
     bottom: 25%;
     background: #000;
     z-index: 1000;
     background: url('/img/loader4.gif')no-repeat center 0;
 }

 /* loader materiales */
 #loaderMat {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Asegura que el loader se muestre por encima de otros elementos */
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3); /* Color del borde */
  border-top: 4px solid white; /* Color del borde superior */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Animación de rotación */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loaderMat p {
  margin-top: 10px;
  font-size: 18px;
}

/* saltos de linea para descripcion  */
.salto_de_linea {
  white-space: pre-wrap; /* Mantiene los saltos de línea */
}